home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / othello.rc < prev    next >
Encoding:
Text File  |  1985-06-16  |  2.5 KB  |  140 lines  |  [TEXT/ttxt]

  1. * Tell RMAKER what to name the resource file
  2. Othello.rsrc
  3.  
  4.  
  5. * Version data for the finder
  6. *    Our signature is "OTLO"
  7. *    res. ID = 0, by convention
  8. *    finder version data
  9. *    Note that the blank in 'STR ' is significant 3/8/85 WHJ
  10.  
  11. Type OTLO = STR 
  12.   ,0
  13.   Othello 1.0 -- Jun 13, 1985
  14.  
  15. * Strings (kept here for ease of change)
  16. *   ID,(4 => pre-load the resource)
  17. * A string for "About Othello"
  18.  
  19. Type STR
  20.    ,1(4)
  21. Othello, version 1.0 (June 13, 1985), by Steven B. Munson
  22.  
  23. Type STR
  24.    ,2(4)
  25. Click here to continue.
  26.  
  27. * Menus
  28. *   ID (4 => pre-load the resource; MUST NOT be purgeable!)
  29. *   menu title: an Apple symbol (in hex) for the Apple menu.
  30. *   menu entries, one per line. ( means it's initially disabled.
  31. *   An entry of  (-  means a disabled line of dashes.
  32. *   A trailing /Q means a command-key equivalent.
  33. *   blank line at end of menu.
  34. Type MENU
  35.   ,1(4)
  36.   
  37.     About Othello
  38.     (-
  39.  
  40. Type MENU
  41.   ,2(4)
  42.   Game
  43.     New Game/N
  44.     (Old Game/O
  45.     (Save Game/S
  46.     Stop Thinking
  47.     (-
  48.     Quit/Q
  49.  
  50. Type MENU
  51.   ,3(4)
  52.   Move
  53.     Undo Move/U
  54.     Redo Move/R
  55.     Redisplay Move/M
  56.  
  57. Type MENU
  58.   ,4(4)
  59.   Players
  60.     White/W
  61.     Black/B
  62.  
  63. Type MENU
  64.   ,5(4)
  65.   Skill
  66.     Level 0/0
  67.     Level 1/1
  68.     Level 2/2
  69.     Level 3/3
  70.     Level 4/4
  71.     Level 5/5
  72.     (-
  73.     Increase Skill/I
  74.     Decrease Skill/D
  75.  
  76. Type MENU
  77.   ,6(4)
  78.   Trace
  79.     Off
  80.     On
  81.     Visual
  82.     Verbose
  83.  
  84. * A Window template
  85. *   ID,(4 => pre-load the resource; 32 => purgeable)
  86. *    title
  87. *    BoundsRect (global Top, Left, Bottom, Right): where it appears on the screen
  88. *    Vis NoGo: it's visible, does not have close box
  89. *    ProcId: this is a standard type of window
  90. *    Refcon, for program's use.  Othello doesn't use it.
  91. Type WIND
  92.   ,260(36)
  93.   Othello
  94.   50 40 300 462
  95.   Visible NoGoAway
  96.   0
  97.   0
  98.  
  99. * dialog box for Report
  100. *   ID (4 => pre-load the resource; MUST NOT be purgeable!)
  101. *   title
  102. *   BoundsRect(global: TLBR)
  103. *   Vis NoGo: it's visible, but has no close box
  104. *   ProcID: Window type is modal dialog
  105. *   RefCon: Unused user variable
  106. *   res. ID of item list
  107. Type DLOG
  108.   ,257(4)
  109.   80 20 131 492
  110.   Visible 1 NoGoAway 0
  111.   257
  112.   Report Box
  113.  
  114. * dialog item list for Report
  115. *   ID (4 => pre-loaded; 32 => purgeable - it should always be purgeable.)
  116. *   # Items
  117. *   the first item:
  118. *      a Button you can select
  119. *      display rect (local coords)
  120. *      title
  121. *   the second item:
  122. *     Static text, disabled (i.e. can't select it)
  123. *     display rect
  124. *     text to be set by ParamText
  125. Type DITL
  126.   ,257(36)
  127.   2
  128.     BtnItem Enabled
  129.     25 186 46 286
  130. OK
  131.  
  132.     StatText Disabled
  133.     5 25 20 450
  134. ^0
  135.  
  136.  
  137.  
  138. Type CODE
  139.   b.out,0
  140.